All Questions
Tagged with executablebinary
22 questions
4votes
1answer
6kviews
Cannot exceute binary: required file not found
I see that there are other questions like this out there, but the answers there did not work for me. I am using I downloaded the Julia 1.9.2 (Linux, x86-64, glibc) prebuilt binary and tried to execute ...
1vote
0answers
114views
What happened to a.out
I just started to wonder what ever happened to the original a.out binary file format and why it was superseded by ELF?
0votes
1answer
123views
./<filename> No such file or directory
I'm trying to run a binary. But when I'm trying to run the file I'm facing the following error. pegasus@pegasus:~/Documents/Courses/heaplab-main/house_of_force$ ./house_of_force bash: ./...
1vote
0answers
241views
Get Linux Executable Signing Certificate Information
I wanted to know if there was a way (some sort of library that I'm unaware of) that gets the signing certificate details of an executable. I know it's possible to sign a binary using openssl but how ...
0votes
1answer
208views
How can I make a specific piece of code portable for running on different systems through a pipe?
Quite often, when I search a solution to a problem, I end up finding lines of code like the following: curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python - ...
0votes
1answer
841views
stdout equivalent in pure binary?
Heyo all! I know this sounds like a super ambiguous question, but I think it's relevant. First, let me define some terms. Binary In this question, meaning the literal 1s and 0s that the computer ...
0votes
1answer
2kviews
Executable binaries labelled as shared library files
After compiling software from source code, I can usually launch the compiled binary by double-clicking on it. Recently however, most of my compiled binaries are not responding to double-click, even if ...
1vote
1answer
204views
Which binary would be run when we have multiple installations?
I wanted to set gsettings as /usr/bin/gsettings so I created an alias. But I am not sure if that works: $ type gsettings gsettings is aliased to `/usr/bin/gsettings' gsettings is /home/linuxbrew/....
0votes
1answer
542views
cannot execute elastix binary file
I am trying to run a binary file (./elastix) in the terminal but I am getting the following error /Users/tony/Desktop/elastix-4.9/bin/elastix: cannot execute binary file When I type the command file ...
5votes
3answers
6kviews
Is there a way to embed an executable binary in a shell script without extra tools?
I'm looking for a way to have an executable binary hardwired into a script. Something like this: #!/bin/bash ...some shell code execute binary: >>> binary code ......
8votes
3answers
7kviews
Is the bin/ directory for storing binary files?
I have seen many tutorials saying that the bin directory is used to store binary files, meaning there is only 0 and 1 in the files in that directory. However, in many cases, I see files in bin that ...
1vote
1answer
2kviews
Executing a program gives No such file or folder error [duplicate]
I can't execute a simple executable. The result of ll user@user-SATELLITE-C855-169:~/Bureau/Workspace/buildroot/buildroot/output/host/opt/ext-toolchain/bin$ ll total 16948 drwxr-xr-x 2 user user ...
1vote
1answer
3kviews
"No such file or directory" as error for wrong architecture [duplicate]
I'm trying to run a cross compiler on my 64 bit Ubuntu. and it results in a following error: $ ./arm-none-eabi-gcc bash: ./arm-none-eabi-gcc: No such file or directory The file is here and contains ...
2votes
4answers
4kviews
Execute binary code
I have a binary code and I want to run it. 01001000 01100101 01101100 01101100 01101111 00100000 01010111 01101111 01110010 01101100 01100100 How can I create a file "application/x-executable" and ...
13votes
1answer
10kviews
When can I edit strings in an executable binary?
I have an executable binary; let's call it a.out. I can see the binary contains strings $ strings a.out ... /usr/share/foo .... I need to change the string /usr/share/foo to /usr/share/bar. Can I ...